home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d6 / sprt109b.arc / SPORTR.CTL < prev    next >
Text File  |  1990-10-29  |  3KB  |  91 lines

  1. ;    This is a sample SPORTR.CTL - the Control File for the
  2. ;             SPORT Remote Access Utility
  3. ;    When this file is in the SPORT default directory AND
  4. ;   a caller correctly enters your Remote Access Password,
  5. ;   the caller will see an automatically generated menu that
  6. ;   lists the commands after the word "menu" and the keys after
  7. ;   the word "remotecommand". REM lines are displayed.
  8.  
  9. menu Send Table of Contents file to Main Office
  10. remotecommand 1
  11. begin.
  12. REM ------------------------------------------------------------
  13. REM You will receive the Table of Contents File via SPORT Mail.
  14. REM The name of this file is:  SPORT.TOC
  15. REM ------------------------------------------------------------
  16. SPORTU P OFFICE C:\SPORT\SPORT.TOC
  17. end.
  18.  
  19. menu Send All Logs to Main Office
  20. remotecommand 2
  21. begin.
  22. REM ------------------------------------------------------------
  23. REM You will receive the latest log files via SPORT Mail.
  24. REM ------------------------------------------------------------
  25. SPORTU P OFFICE C:\SPORT\*.LOG
  26. end.
  27.  
  28. menu Delete All Logs Previous to Today
  29. remotecommand 3
  30. begin.
  31. REM -----------------------------------------------------------
  32. REM Cleans the System of Old Log Files
  33. REM -----------------------------------------------------------
  34. del c:\sport\0*.log
  35. end.
  36.  
  37. menu Poll the Main Office
  38. remotecommand 4
  39. begin.
  40. REM -----------------------------------------------------------
  41. REM Check in for information at the Main Office
  42. REM -----------------------------------------------------------
  43. SPORTU P OFFICE
  44. end.
  45.  
  46. menu Run a System Check
  47. remotecommand 5
  48. begin.
  49. REM -----------------------------------------------------------
  50. REM Making Sure the System is in good shape.
  51. REM Log can be checked for results.
  52. REM ------------------------------------------------------------
  53. SPORTU S CHECK
  54. end.
  55. ;    These particular examples use an external protocol called
  56. ;    DSZ (c) to provide downloading.
  57. ;
  58. menu Download list of BBS/Comm Programs (Xmodem CRC)
  59. remotecommand 6
  60. begin.
  61. REM -------------------------------------------------------------
  62. REM A complete list of BBS/Communication Applications available.
  63. REM The name of this file is:  FILES.BBS
  64. REM -------------------------------------------------------------
  65. REM Start receiving XMODEM NOW...
  66. DSZ D sx c:\upld\bbs\files.bbs
  67. end.
  68.  
  69. menu Download SPORT File List (Zmodem)
  70. remotecommand 7
  71. begin.
  72. REM -------------------------------------------------------------
  73. REM You are about to receive a listing of SPORT related files
  74. REM The name of this file is:  SPORT.LST
  75. REM -------------------------------------------------------------
  76. REM Start receiving XMODEM NOW...
  77. dsz D sz d:\file\SPORT.LST
  78. end.
  79.  
  80. menu Download Latest SPORT W.A.I.T.S. Package (Zmodem)
  81. remotecommand S
  82. begin.
  83. REM -------------------------------------------------------------
  84. REM You are about to receive the latest SPORT W.A.I.T.S. Package
  85. REM The name of this file is:  SPORT.ZIP
  86. REM -------------------------------------------------------------
  87. REM Start receiving XMODEM NOW...
  88. dsz D sz d:\sport\sport.zip
  89. end.
  90.  
  91.